home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form FrmHelpFavorites
- BackColor = &H00000000&
- BorderStyle = 1 'Fixed Single
- Caption = "Favorites"
- ClientHeight = 2205
- ClientLeft = 4470
- ClientTop = 2775
- ClientWidth = 2040
- Icon = "FrmHelpFavorites.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2205
- ScaleWidth = 2040
- Begin VB.CommandButton cmdDone
- Caption = "Done"
- Height = 375
- Left = 240
- TabIndex = 3
- Top = 1680
- Width = 1335
- End
- Begin VB.Label lblGo
- BackColor = &H80000012&
- Caption = "Delete Favorite"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 2
- Top = 1080
- Width = 1935
- End
- Begin VB.Label lblViewFavorites
- BackColor = &H80000012&
- Caption = "View Favorites"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 1
- Top = 600
- Width = 1815
- End
- Begin VB.Label lblAddfavoprite
- BackColor = &H80000012&
- Caption = "Add Favorite"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 0
- Top = 120
- Width = 1695
- End
- Attribute VB_Name = "FrmHelpFavorites"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDone_Click()
- FrmHelpFavorites.Hide
- frmHElp.Show
- End Sub
- Private Sub lblAddfavoprite_Click()
- frmhelpaddfavorite.Show
- FrmHelpFavorites.Hide
- End Sub
- Private Sub lblGo_Click()
- frmhelpDeleteFavorite.Show
- FrmHelpFavorites.Hide
- End Sub
- Private Sub lblViewFavorites_Click()
- frmHelpViewFavorites.Show
- FrmHelpFavorites.Hide
- End Sub
-